home *** CD-ROM | disk | FTP | other *** search
- //***********************************************************************
- //
- // TextView.h
- //
- //***********************************************************************
-
- class CTextView : public CEditView
- {
- DECLARE_DYNCREATE (CTextView)
-
- private:
- CFont m_font;
-
- inline CPaintDoc* GetDocument () { return (CPaintDoc*) m_pDocument; }
- void AddEntry (CLine*);
-
- public:
- virtual BOOL PreCreateWindow (CREATESTRUCT&);
- virtual void OnInitialUpdate ();
-
- protected:
- virtual void OnUpdate (CView*, LPARAM, CObject*);
-
- afx_msg int OnCreate (LPCREATESTRUCT);
- DECLARE_MESSAGE_MAP ()
- };
-